home *** CD-ROM | disk | FTP | other *** search
- @echo off
- GOTO BEGIN
-
- This batch file compiles and links the HARDERR.EXE program.
-
- It assumes that you have a functional MICROSOFT C working environment
- with MASM on-line and that the Command Line is being used.
-
- The equivalent of the following environment is required:
-
- PATH=D:\msc\bin;
- SET INCLUDE=D:\MSC\INCLUDE
- SET LIB=D:\MSC\LIB
- SET TMP=D:\MSC\TMP
- SET CL=/AL /Zp1
-
- :BEGIN
-
- CL HARDERR.C /c
- MASM INT24,INT24,NUL,NUL
- LINK HARDERR INT24,,NUL,LLIBCE.LIB /E /NOD;
- Echo We Now Return to Normal Programming.